Skip to content

Conversation

@ashishdutta007
Copy link

No description provided.

while (someObj.hasOwnProperty(propKey)) {
propKey = Math.random().toString();
}
someObj[propKey] = targetFunc;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use this line of code?
someObj.__proto__.propKey = targetFunc;

someObj[propKey] = targetFunc;

// prepend outer args to inner args
const result = someObj[propKey](...outerFuncArguments, ...innerFuncArgs);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use this line of code?
const result = someObj.propKey(...outerFuncArguments, ...innerFuncArgs);


// prepend outer args to inner args
const result = someObj[propKey](...outerFuncArguments, ...innerFuncArgs);
delete someObj[propKey];
Copy link
Member

@TheSTL TheSTL Oct 12, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

delete someObj.__proto__.propKey;

Copy link
Member

@TheSTL TheSTL left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes are required because keyProps gets printed.
image

@ashishdutta007 ashishdutta007 closed this by deleting the head repository Sep 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants